.wrapper {
     position: relative;
     width: 90vw;
    height: 87vh;
    margin-top: 50px;
     background: transparent;
     border: 2px solid rgba(233, 183, 146, .5);
     border-radius: 20px;
     backdrop-filter: blur(20px);
     box-shadow: 0 0 30px rgba(0, 0, 0, .5);
     display: flex;
     justify-content: center;
     align-items: center;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.content h1 {
    font-family: 'Rubik', sans-serif;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 2.5em;
}

.content h1:first-child {
    margin-bottom: 20px;
}

.content p {
    font-family: 'Heebo', sans-serif;
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #34495e;
    text-align: right;
}

.content strong {
    color: #2980b9;
    font-weight: 600;
}

.content em {
    color: #16a085;
}

.about-section {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 40px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}